java之Spring Boot全局异常处理实例详解 您所在的位置:网站首页 详解spring boot20 java之Spring Boot全局异常处理实例详解

java之Spring Boot全局异常处理实例详解

2023-05-26 08:33| 来源: 网络整理| 查看: 265

这篇文章主要为大家详细介绍了Spring Boot全局异常处理的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文为大家分享了Spring Boot全局异常处理,供大家参考,具体内容如下

1、后台处理异常

a、引入thymeleaf依赖

org.springframework.boot spring-boot-starter-thymeleaf 登录后复制

b、在application.properties文件中设置属性

#关闭thymeleaf模板的缓存 spring.thymeleaf.cache=false登录后复制

c、编写后台处理Handler  

import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; @ControllerAdvice public class GlobalExceptionHandler {   //设置此handler处理所有异常 @ExceptionHandler(value=Exception.class) public void defaultErrorHandler(){ System.out.println("-------------default error"); } }登录后复制

d、后台异常打印

-------------default error2017-06-16 14:54:05.314 WARN 6892 --- [nio-8080-exec-1] .m.m.a.ExceptionHandlerExceptionResolver : Resolved exception caused by Handler execution: org.springframework.dao.IncorrectResultSizeDataAccessException: result returns more than one elements; nested exception is javax.persistence.NonUniqueResultException: result returns more than one elements

2、页面处理异常

a、编写html模板页面

Insert title here 异常出现啦 ${messages} 登录后复制

b、修改Handler

import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.ResponseBody; @ControllerAdvice public class GlobalExceptionHandler { @ExceptionHandler(value=Exception.class) @ResponseBody public String defaultErrorHandler(){ System.out.println("-------------default error"); return "系统错误,请联系管理员"; } }登录后复制

c、页面访问结果

以上就是java之Spring Boot全局异常处理实例详解的详细内容,更多请关注php中文网其它相关文章!



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有